home *** CD-ROM | disk | FTP | other *** search
/ Workbench Design / WB Collection.iso / workbench werkzeuge / preference programme / systemprefs / install < prev    next >
Text File  |  1996-04-07  |  2KB  |  82 lines

  1. ; ************************************************
  2. ; *
  3. ; * SystemPrefs - HD Install Script
  4. ; *
  5. ; * $VER: Install-System 1.20
  6. ; *
  7. ; * Script written by Richard Körber
  8. ; *
  9. ; ************************************************
  10.  
  11.  
  12. (set ToolSource         "System")
  13. (set CLIToolSource      "C/SysPrefs")
  14. (set LangSource         "Catalogs/")
  15. (set LibSource1         "Libs/provision.library")
  16. (set LibSource2         "Libs/reqtools.library")
  17.  
  18. (set CopyLib1Prompt     "Copy provision.library?")
  19. (set CopyLib2Prompt     "Copy reqtools.library?")
  20. (set ToolDirPrompt      "Copy System to...?")
  21. (set CLIDirPrompt       "Copy SysPrefs to...?")
  22. (set ToolCopyPrompt     "Copying System...")
  23. (set CLICopyPrompt      "Copying SysPrefs...")
  24. (set LangCopyPrompt     "Copying locale files...")
  25.  
  26.  
  27. (set ToolDir (askdir
  28.     (prompt ToolDirPrompt)
  29.     (help   @askdir-help)
  30.     (default "SYS:Prefs/")
  31. ))
  32.  
  33. (set CLIToolDir (askdir
  34.     (prompt CLIDirPrompt)
  35.     (help   @askdir-help)
  36.     (default "SYS:C/")
  37. ))
  38.  
  39. (copyfiles
  40.     (prompt ToolCopyPrompt)
  41.     (help   @copyfiles-help)
  42.     (source ToolSource)
  43.     (dest   ToolDir)
  44.     (infos)
  45. )
  46.  
  47. (copyfiles
  48.     (prompt CLICopyPrompt)
  49.     (help   @copyfiles-help)
  50.     (source CLIToolSource)
  51.     (dest   CLIToolDir)
  52. )
  53.  
  54. (copyfiles
  55.     (prompt LangCopyPrompt)
  56.     (help   @copyfiles-help)
  57.     (source LangSource)
  58.     (dest   "LOCALE:catalogs")
  59.     (choices "Deutsch" "Svenska")
  60.     (confirm)
  61. )
  62.  
  63. (copylib
  64.     (prompt CopyLib1Prompt)
  65.     (help   @copylib-help)
  66.     (source LibSource1)
  67.     (dest   "LIBS:")
  68.     (confirm)
  69. )
  70.  
  71. (copylib
  72.     (prompt CopyLib2Prompt)
  73.     (help   @copylib-help)
  74.     (source LibSource2)
  75.     (dest   "LIBS:")
  76.     (confirm)
  77. )
  78.  
  79. (message "Please add the following line\ninto s:startup-sequence:\n\n"
  80. "  SysPrefs >NIL: \n\n"
  81. "Just before 'IPrefs' is the best place.")
  82.